123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <template>
- <!-- 页面头部 -->
- <HomePageHead></HomePageHead>
- <!-- Banner1 -->
- <HomeBanner1></HomeBanner1>
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <div class="inner">
- <span class="location">当前位置:</span>
- <el-breadcrumb :separator-icon="ArrowRight">
- <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
- <el-breadcrumb-item :to="{ path: `/primaryNavigation/${listid}` }" v-show="name">{{name}}</el-breadcrumb-item>
- <el-breadcrumb-item>{{ routeNewsTtitle }}</el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- <!-- 资讯列表 -->
- <div class="newsDetail">
- <div class="inner">
- <div class="innerLeft">
- <div class="LeftTop">
- <h1>{{ newsDetail.title }}</h1>
- <p>
- 来源: <span>{{ newsDetail.author }}</span>
- <span>{{ newsDetail.updated_at }}</span>
- 浏览量: <span>{{ newsDetail.hits }}</span>
- </p>
- <img :src="newsDetail.imgurl" alt="">
- </div>
- <div class="leftBottom" v-html="newsDetail.content">
-
- </div>
- </div>
- <div class="innerRight">
- <!-- 热点资讯1 -->
- <DetailHotNews></DetailHotNews>
- <!-- 热点资讯2 -->
- <DetailHotNews2></DetailHotNews2>
- </div>
- </div>
- </div>
- <!-- 页面底部 -->
- <HomeFoot></HomeFoot>
- </template>
- <script setup>
- import { onMounted } from 'vue'
- import { ElBreadcrumb, ElBreadcrumbItem } from 'element-plus'
- import { ArrowRight } from '@element-plus/icons-vue'
- const nuxtApp = useNuxtApp();
- const axios = nuxtApp.$axios;
- //获得跳转过来的id
- const route = useRoute();
- const articleId = route.params.id; //获得该页面的id
- const listid = route.query.listId; //获得该页面的id
- const name = route.query.listName; //获得该页面的id
- const newsDetail = ref({})
- console.log(articleId)
- const routeNewsTtitle = ref("");
- //获取详情
- const getNewsInfo = async () => {
- const response = await axios.get(`/web/selectWebsiteArticleInfo?articleid=${articleId}`);
- newsDetail.value = response.data;
- console.log(newsDetail.value.title)
- if(newsDetail.value.title.length > 30){
- routeNewsTtitle.value = newsDetail.value.title.substr(0,30) + "...";
- }
- }
- onMounted(()=>{
- getNewsInfo()
- })
- </script>
- <style lang="less" scoped>
- //导航条
- .breadcrumb {
- width: 100%;
- height: 22px;
- margin-bottom: 30px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- .el-breadcrumb::v-deep{
- display: inline-block;
- vertical-align: -4px;
- }
- /deep/.el-breadcrumb__inner a,
- /deep/.el-breadcrumb__inner.is-link {
- color: #666666;
- font-weight: 400;
- text-decoration: none;
- transition: var(--el-transition-color);
- }
- span {
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- span:hover {
- color: #666666;
- }
- .location {
- margin-right: 20px;
- width: 100px;
- height: 22px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 20px;
- color: #666666;
- line-height: 23px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- // 资讯列表
- .newsDetail {
- width: 100%;
- //height: 1400px;
- margin-bottom: 70px;
- .inner {
- width: 1200px;
- //height: 1400px;
- overflow: hidden;
- font-size: 16px;
- .innerLeft {
- // height: 1400px;
- border-top: 1px solid #139602;
- .LeftTop {
- height: 522px;
- margin-top: 50px;
- >h1 {
-
- line-height: 40px;
- margin-bottom: 30px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: bold;
- font-size: 30px;
- color: #333333;
- }
- >p {
- height: 18px;
- line-height: 18px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-weight: 400;
- font-size: 14px;
- color: #999999;
- span {
- margin-right: 40px;
- }
- }
- >img {
- width: 680px;
- height: 382px;
- padding: 50px 0px 60px 55px;
- }
- }
- .leftBottom {
- width: 790px;
- height: 754px;
- margin-top: 76px;
- >h3,>p{
- text-indent: 2em;
- width: 790px;
- font-family: Microsoft YaHei, Microsoft YaHei;
- font-size: 20px;
- color: #333333;
- line-height: 23px;
- padding-bottom: 30px;
- }
- >h3 {
- font-weight: 600px;
- }
- >p {
- font-weight: 400;
- }
- }
- }
- .innerRight {
- width: 381px;
- height: 605px;
- background-color: #fbfbfb;
- border-top: 1px solid #139602;
- }
- }
- }
- </style>
|